home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / TemaCD / RCEdit / RCEdit.CAB / Clock - Status Line.js < prev    next >
Text File  |  1996-09-30  |  1KB  |  39 lines

  1. // Clock global variables and functions
  2. // Status bar init, need to be cleaned up, I'll get around to it...maybe!
  3.     
  4.     var timerID = null;
  5.     var timerRunning = false;
  6.     var id,pause=0,position=0;
  7.  
  8.     function stopclock (){
  9.     if(timerRunning)
  10.         clearTimeout(timerID);
  11.     timerRunning = false;
  12.     }
  13.  
  14.     var timerID = null;
  15.     var timerRunning = false;
  16.     var id,pause=0,position=0;
  17.  
  18.     function stopclock (){
  19.     if(timerRunning)
  20.         clearTimeout(timerID);
  21.     timerRunning = false;
  22.     }
  23.  
  24.     function showtime () {
  25.     var now = new Date();
  26.     var hours = now.getHours();
  27.     var minutes = now.getMinutes();
  28.     var seconds = now.getSeconds()
  29.     var timeValue = "" + ((hours >12) ? hours -12 :hours)
  30.     timeValue += ((minutes < 10) ? ":0" : ":") + minutes
  31.     timeValue += ((seconds < 10) ? ":0" : ":") + seconds
  32.     timeValue += (hours >= 12) ? " P.M." : " A.M."
  33.     today = new Date()
  34.     date = today.getMonth()+1+"/"+ today.getDate()+"/"+ today.getYear()
  35.     window.status = "R. Chapman's Website: " + date + "  \-  " + timeValue;
  36.     timerID = setTimeout("showtime()",1000);
  37.     timerRunning = true;
  38.     }
  39.